home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 14 / 014.d81 / t.sprite editor < prev    next >
Text File  |  2022-08-26  |  2KB  |  94 lines

  1.  
  2.            SPRITE EDITOR
  3.  
  4.  
  5.  
  6. Written by:  Thomas Markel
  7.  
  8.  
  9.  
  10.   This program allows for the easy
  11.  
  12. creation, editing, loading and saving
  13.  
  14. of sprites. Some of its features are:
  15.  
  16.  
  17.   - Grid layout to build sprite in
  18.  
  19.   - Display of corresponding poke
  20.     values
  21.  
  22.   - Column and row number displayed
  23.  
  24.   - Top line command line
  25.  
  26.   - Help mode
  27.  
  28.   - Display of sprite being built
  29.  
  30.  
  31.   All of your options are visable on
  32.  
  33. the top line of the screen while
  34.  
  35. running the program.  Help is provided
  36.  
  37. by typing the 'H' key.  You 'scroll'
  38.  
  39. through HELP by using the cursor
  40.  
  41. keys (cursor left => page forward,
  42.  
  43. cursor down => page back).
  44.  
  45.   The arrow in the grid is controlled
  46.  
  47. by the joystick or via the keyboard.
  48.  
  49. Use the joystick in Port 2 or use the
  50.  
  51. cursor keys for movement.
  52.  
  53.   The program saves the sprite as a
  54.  
  55. SEQuential file.  To use the sprite,
  56.  
  57. simply OPEN the file, INPUT the data
  58.  
  59. and POKE the data into the correct
  60.  
  61. memory locations. For example, the
  62.  
  63. following program segment will INPUT
  64.  
  65. the data from a file called 'MYCAR'
  66.  
  67. and store it in sprite block 13:
  68.  
  69. 10 OPEN 2,8,2,"MYCAR" : REM OPEN FILE
  70. 20 FOR X=0 TO 62
  71. 30 INPUT#2,A          : REM INPUT DATA
  72. 40 POKE 832+X,A       : REM  13*64=832
  73. 50 NEXT X
  74. 60 CLOSE 2            : REM CLOSE FILE
  75. 70 :
  76. 80 REM  YOUR PROGRAM CONTINUES HERE
  77. 90 REM  AND FIXES ALL THE THINGS THAT
  78. 92 REM  ARE NECESSARY FOR SPRITES.
  79. 94 :
  80.  
  81.  
  82.   By the way, the file 'MYCAR' is
  83.  
  84. really on this issue of LOADSTAR.  It
  85.  
  86. can be found on Side 1.  It was
  87.  
  88. created by Thomas Markel.
  89.  
  90.  
  91. Files used:  SPRITE EDITOR
  92.  
  93. --------------------------------------
  94.